home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / dsp / 56ktools / a5611.tz / a5611 / examples / defs.inc < prev    next >
Text File  |  1992-08-11  |  546b  |  24 lines

  1. ; defs.inc
  2. ; Todd Day (todd@ivucsb.sba.ca.us)
  3. ; Wed Aug  2 23:43:22 PDT 1989
  4. ; miscellaneous definitions that I've found useful
  5. ; sometimes I use them in programs I write
  6.  
  7. ; number of samples per second = 20 MHz / 512 (your value here)
  8. numsamp    equ    39062
  9.  
  10. ; program starting point (we aren't using the host vectors - $40 if you do)
  11. pgmram    equ    $0020
  12.  
  13. ; beginning of internal data ram
  14. intram    equ    $0000
  15.  
  16. ; beginning of internal data rom
  17. introm    equ    $0100
  18.  
  19. ; beginning of external data ram
  20. extram    equ    $0200
  21.  
  22. ; end of external data ram
  23. endram    equ    $ffbf
  24.